home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _IEImgClick.au3 < prev    next >
Text File  |  2006-07-14  |  1KB  |  31 lines

  1. ; *******************************************************
  2. ; Example 1 - Click on IMG by Alt text
  3. ; *******************************************************
  4. ;
  5. #include <IE.au3>
  6. $oIE = _IE_Example ("basic")
  7. _IEImgClick ($oIE, "AutoIt Homepage Image", "alt")
  8.  
  9. ; *******************************************************
  10. ; Example 2 - Click on IMG by name
  11. ; *******************************************************
  12. ;
  13. #include <IE.au3>
  14. $oIE = _IE_Example ("basic")
  15. _IEImgClick ($oIE, "AutoItImage", "name")
  16.  
  17. ; *******************************************************
  18. ; Example 3 - Click on IMG by src sub-string
  19. ; *******************************************************
  20. ;
  21. #include <IE.au3>
  22. $oIE = _IE_Example ("basic")
  23. _IEImgClick ($oIE, "autoit_6_240x100.jpg", "src")
  24.  
  25. ; *******************************************************
  26. ; Example 4 - Click on IMG by full src string
  27. ; *******************************************************
  28. ;
  29. #include <IE.au3>
  30. $oIE = _IE_Example ("basic")
  31. _IEImgClick ($oIE, "http://www.autoitscript.com/images/autoit_6_240x100.jpg")